From 02c6b454ff90971e9dfbf7c72d2f8479236a49c9 Mon Sep 17 00:00:00 2001 From: robertl Date: Thu, 13 Jul 2006 19:59:36 +0000 Subject: [PATCH] Loosen check that insisted that time travels only forward when reading NMEA files. From Andy Armstrong. --- nmea.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmea.c b/nmea.c index f2b6f6fcb..cc4e30469 100644 --- a/nmea.c +++ b/nmea.c @@ -735,7 +735,7 @@ nmea_read(void) while ((ibuf = textfile_read(tin))) { nmea_parse_one_line(ibuf); - if (lt < last_read_time && curr_waypt && trk_head) { + if (lt != last_read_time && curr_waypt && trk_head) { if (curr_waypt != last_waypt) { track_add_wpt(trk_head, curr_waypt); last_waypt = curr_waypt; -- 2.30.2